home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / print.hlp < prev    next >
Encoding:
Text File  |  1989-02-03  |  1.7 KB  |  37 lines

  1. PRINT (expr);            Print values for 'expr'
  2.  
  3. The PRINT procedure outputs successive values calculated for 'expr' to
  4. the standard output device.  PRINT output normally goes to the video
  5. display screen unless the 'output to line printer' parameter is set via
  6. the Execution Options or DOS's I/O redirection facilities are used to
  7. send the output to a disk file.  Alternatively, entering control-P on
  8. the keyboard when entering the DAN command line will send the output to
  9. both the screen and the printer.
  10.  
  11. Values are printed five per line preceded by a time tag that
  12. corresponds to the first data value on each line.  Time tags for
  13. successive values on the same line are one step size larger than
  14. the preceeding one.  Note: time tags are printed even if an X axis
  15. file has been specified.  The XFORMAT and YFORMAT controls
  16. determine the format of the time tag and data values respectively.
  17. +
  18. The current main label (LABEL) is used in the header line at the top
  19. of each page.
  20.  
  21. PRINTs done while a graph is on the screen will overwrite the graph
  22. unless you 1. have a Hercules graphics interface, or 2. used the '-L'
  23. command line option.  Try to do PRINTs before any PLOTs, or precede
  24. the PRINT with an ERASE.
  25.  
  26. PRINT statements should not be grouped with other PRINT
  27. statements via the ampersand terminator.  In such a case, DANAL
  28. prints values for the grouped expressions starting with the last
  29. expression of the group and cycling through successive expression
  30. values.  For instance, if the following statements were executed:
  31.  
  32.      PRINT (A)  &  PRINT (B);
  33.  
  34. the first data value printed would be for expression B at START,
  35. the second for expression A at START+STEP, the third for B also
  36. at START+STEP, etc.
  37.